; If you have created a new scanner, or if you have a log file which
; is currently not supported then please don't hestitate and mail it
; uuencoded to "raymondp@sphinx.stack.urc.tue.nl".
;
; Token Description Type Range
; ===== =========== ==== =====
; %n host name STRING
; %a phone number STRING
; %A phone number (char restriction) STRING
;
; %h hour (connection) INT 0..23
; %m minutes (connection) INT 0..59
; %s seconds (connection) INT 0..59
; %y year (connection) INT 1970..
; %e year, short (connection) INT 0..99
; %o month (connection) INT 1..12
; %t month, string (connection) STRING
; %d day of month (connection) INT 1..31
; %p AM or PM (connection) STRING ("AM"|"PM"|"A"|"P"|" ")
;
; %H hour (end of connection) INT 0..23
; %M minutes (end of connection) INT 0..59
; %S seconds (end of connection) INT 0..59
; %Y year (end of connection) INT 1970..
; %E year, short (end of connection) INT 0..99
; %O month (end of connection) INT 1..12
; %T month, string (end of connection) STRING
; %D day of month (end of connection) INT 1..31
; %P AM or PM (end of connection) STRING ("AM"|"PM"|"A"|"P"|" ")
;
; %U hours (connection length) INT
; %I minutes (connection length) INT
; %X seconds (connection length) INT
;
; %# dummy number INT
; %$ dummy string STRING # >= 1
; %c dummy character CHAR
;
;
; *** Term action logfile ***
(scanner
(name "Term action log")
(scanstring.reset "%#-%$-%# %#:%#:%# Start of session %$")
(scanstring.default "%d-%t-%e %h:%m:%s Connected to \"%n\" (%a)." "%D-%T-%E %H:%M:%S Carrier lost (%$)." "%D-%T-%E %H:%M:%S End of session." "%D-%T-%E %H:%M:%S Hung up the line.")